home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 December
/
2004-12 CHIP.iso
/
Narzedzia systemowe
/
Inno Setup 5.0.4 Beta
/
isetup-5.0.4-beta.exe
/
{app}
/
Examples
/
MyDll
/
Delphi
/
MyDll.dpr
Wrap
Text File
|
2003-04-13
|
224b
|
15 lines
library MyDll;
uses
Windows;
procedure MyDllFunc(hWnd: Integer; lpText, lpCaption: PChar; uType: Cardinal); stdcall;
begin
MessageBox(hWnd, lpText, lpCaption, uType);
end;
exports MyDllFunc;
begin
end.